Version

Semester(DateTime,String,String[]) Method

Returns formated string of year and semester of given System.DateTime.
Syntax
'Declaration
 
Public Overloads Shared Function Semester( _
   ByVal dateTime As Date, _
   ByVal semesterFormat As String, _
   ByVal semesters() As String _
) As String
public static string Semester( 
   DateTime dateTime,
   string semesterFormat,
   string[] semesters
)

Parameters

dateTime
The original System.DateTime instance.
semesterFormat
The format string. Use {0} for year and {1} for semester location.
semesters
Semester names.

Return Value

The semester name in supplied format.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also